home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_basi / bltq127.zip / README.NOW < prev    next >
Text File  |  1995-04-04  |  1KB  |  29 lines

  1. ----------
  2. Doc Update
  3.  
  4. The following error is not listed in the CZ documentation.  As an unsigned
  5. number, it's value is 65533:
  6.  
  7. ERR_UNEXPECTED_EOF =-3 ;unexpect EOF (actual read <> bytes asked)
  8.  
  9. This would indicate a corrupt file, generally a DBF problem.  See the Bullet
  10. conference message base under "ERROR -3" for more information.
  11.  
  12. ----------
  13. Doc Update
  14.  
  15. The following anomoly occurs when stepping through BASIC code in the QB, QBX,
  16. or VBDOS enviroment:
  17.  
  18. .Occasionally get total mixup/overwrite of VB source code when "stepping"
  19. .through the code as check/debug.
  20.  
  21. This is because the VBDOS environment moves memory whenever it wants to
  22. (when it has control, such as after each time you step).  If memory is
  23. moved between the assignment of VARSEG/VARPTR (AP.recPtrSeg = VARSEG(dataRec),
  24. for example), then that assignment is no longer valid.  Do not "step" through
  25. code that makes assignments and then calls Bullet.  Once you use VARSEG/VARPTR,
  26. and up through the use of that by the Bullet call (call BULLET(AP)), do not
  27. allow the interpreter to take control.  This is easily accomplished by setting
  28. a breakpoint AFTER the Bullet call.  This applies to QB and QBX, as well.
  29.